home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gas_251.zip / bin_251 / binutils / testsuite / binutils-all / size.exp < prev   
Text File  |  1994-09-29  |  3KB  |  57 lines

  1. #   Copyright (C) 1988, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
  2.  
  3. # This program is free software; you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation; either version 2 of the License, or
  6. # (at your option) any later version.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10. # GNU General Public License for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with this program; if not, write to the Free Software
  13. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  14.  
  15. # Please email any bugs, comments, and/or additions to this file to:
  16. # bug-dejagnu@prep.ai.mit.edu
  17.  
  18. # This file was written by Rob Savoye. (rob@cygnus.com)
  19.  
  20. load_lib util-defs.exp
  21. load_lib utils-lib.exp
  22.  
  23. # print the version number of size
  24. send_user "Version [binutil_version $SIZE]"
  25. set test_code $objdir/$subdir/bintest
  26. set addr "\[0-9A-Fa-f\]+"
  27.  
  28. #
  29. # setup the list. Here the layout:
  30. # 1st field is the command line option.
  31. # 2nd field is the pattern to match. NOTE - No variable substitutions can be used!
  32. # 3rd field is an optional message to print with PASS/FAIL.
  33. #
  34. set utility [list { "" "text.*data.*bss.*dec.*hex.*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*[file tail $test_code].*" "No arguments" } \
  35.          { "--format bsd" "text.*data.*bss.*dec.*hex.*filename.*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*[file tail $test_code].*" "Berkeley Output (long name)" } \
  36.          { "-B" "text.*data.*bss.*dec.*hex.*filename.*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*[file tail $test_code].*" "Berkeley Output (short name)" } \
  37.          { "--format sysv" ".*:.*section.*size.*\[0-9A-Fa-f\]+.*(\\.text|\\$TEXT\\$).*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*(\\.data|\\$DATA\\$).*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*(\\.bss|\\$BSS\\$).*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*Total.*\[0-9A-Fa-f\]+" "System V output (long name)" } \
  38.          { "-A" ".*:.*section.*size.*\[0-9A-Fa-f\]+.*(\\.text|\\$TEXT\\$).*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*(\\.data|\\$DATA\\$).*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*(\\.bss|\\$BSS\\$).*\[0-9A-Fa-f\]+.*\[0-9A-Fa-f\]+.*Total.*\[0-9A-Fa-f\]+" "System V output (short name)" } ]
  39.  
  40. foreach i $utility {
  41.     if [util_test "$SIZE" "$SIZEFLAGS [lindex $i 0]" $test_code [lindex $i 1] [lindex $i 2]] then {
  42.     fail "[lindex $i 2]"
  43.     } else {
  44.     pass "[lindex $i 2]"
  45.     }
  46. }
  47.  
  48. #
  49. # FIXME: lots more options to test...
  50. #
  51.  
  52.  
  53.  
  54.  
  55.